home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
powervww
/
pvicons.h
< prev
next >
Wrap
Text File
|
1998-01-05
|
4KB
|
133 lines
// ____________________________________________________
// | |
// | Project: POWER VIEW INTERFACE |
// | File: PVICONS.H |
// | Compiler: WPP386 (10.6) |
// | |
// | Subject: Graphic icons manager interface |
// | |
// | Author: Emil Dotchevski |
// |____________________________________________________|
//
// E-mail: zajo@geocities.com
// URL: http://www.geocities.com/SiliconValley/Bay/3577
void __init_icons( void );
#ifdef DECLARE_PVICONS
#ifndef HGR
boolean graph_flag = 0;
#endif
#ifdef CYR
char i_desktop = '╨';
#else
char i_desktop = '░';
#endif
char *i_close = "(-)";
char *i_resize = "|i■";
char *i_maximize = "|i()";
char *i_minimize = "|i()";
char *i_maximized = "|i()";
char *i_buttonl = "|i▌";
char *i_buttonr = "|i▐";
char *i_sb_up = "|i";
char *i_sb_down = "|i";
char *i_sb_left = "|i";
char *i_sb_right = "|i\032";
#ifdef CYR
char *i_vsb_blank = "╨";
char *i_vsb_bar = "╥";
char *i_hsb_blank = "╨";
char *i_hsb_bar = "╥";
#else
char *i_vsb_blank = "░";
char *i_vsb_bar = "▓";
char *i_hsb_blank = "░";
char *i_hsb_bar = "▓";
#endif
char *i_left_line = " ";
char *i_right_line = " ";
char *i_combo_closed = "|i";
char *i_combo_open = "|i";
char *i_box_ul = "┌";
char *i_box_ur = "┐";
char *i_box_dl = "└";
char *i_box_dr = "┘";
char i_upper_frame = ' ';
char i_upper_frame_r = ' ';
char *i_check_off = "[ ]";
char *i_check_on = "[X]";
char *i_radio_off = "( )";
char *i_radio_on = "()";
char *i_warning = " ▄ \n █ \n ▀ \n ▀ ";
char *i_question = " ▄▄▄ \n▀ ▄▀\n ▀ \n ▀ ";
char *i_info = " ▄ \n ▄▄ \n █ \n ▀▀▀ ";
char i_close_len;
char i_resize_len;
char i_maximize_len;
char i_minimize_len;
char i_maximized_len;
char i_sb_up_len;
char i_sb_down_len;
char i_sb_left_len;
char i_sb_right_len;
char i_combo_closed_len;
char i_combo_open_len;
char i_cluster_len;
#else
#ifndef HGR
extern boolean graph_flag;
#endif
extern char i_desktop;
extern char *i_close;
extern char *i_resize;
extern char *i_maximize;
extern char *i_minimize;
extern char *i_maximized;
extern char *i_buttonl;
extern char *i_buttonr;
extern char *i_sb_up;
extern char *i_sb_down;
extern char *i_sb_left;
extern char *i_sb_right;
extern char *i_vsb_blank;
extern char *i_vsb_bar;
extern char *i_hsb_blank;
extern char *i_hsb_bar;
extern char *i_left_line;
extern char *i_right_line;
extern char *i_combo_closed;
extern char *i_combo_open;
extern char *i_box_ul;
extern char *i_box_ur;
extern char *i_box_dl;
extern char *i_box_dr;
extern char i_upper_frame;
extern char i_upper_frame_r;
extern char *i_check_off;
extern char *i_check_on;
extern char *i_radio_off;
extern char *i_radio_on;
extern char *i_warning;
extern char *i_question;
extern char *i_info;
extern char i_close_len;
extern char i_resize_len;
extern char i_maximize_len;
extern char i_minimize_len;
extern char i_maximized_len;
extern char i_sb_up_len;
extern char i_sb_down_len;
extern char i_sb_left_len;
extern char i_sb_right_len;
extern char i_combo_closed_len;
extern char i_combo_open_len;
extern char i_cluster_len;
#endif
#if !defined( NOICONS ) && !defined( HGR )
void swap_chars( void );
void set_graph_chars( void );
void restore_graph_chars( void );
#endif